From: David Härdeman Date: Wed, 15 Oct 2025 17:28:56 +0000 (+0200) Subject: luci-mod-network: retitle dhcp/dns views X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22http:/www.crowdsec.net/%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22?a=commitdiff_plain;h=e1cdccbccd822844dd4b6a5eb89be935991156b4;p=project%2Fluci.git luci-mod-network: retitle dhcp/dns views And remove a confusing reference to dnsmasq at the top of each page, the message is a bit of a non-sequitur and doesn't really add any useful information. Signed-off-by: David Härdeman --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js index 573656af87..3f437fcbbe 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js @@ -348,8 +348,7 @@ return view.extend({ return template.replace(/\{(\w+)\}/g, (match, key) => values[key] || match); }; - m = new form.Map('dhcp', _('DHCP and DNS'), - _('Dnsmasq is a lightweight DHCP server and DNS forwarder.')); + m = new form.Map('dhcp', _('DHCP')); s = m.section(form.TypedSection, 'dnsmasq'); s.anonymous = false; diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dns.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dns.js index 04a83c6c01..e10766f72a 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dns.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dns.js @@ -349,8 +349,7 @@ return view.extend({ return template.replace(/\{(\w+)\}/g, (match, key) => values[key] || match); }; - m = new form.Map('dhcp', _('DHCP and DNS'), - _('Dnsmasq is a lightweight DHCP server and DNS forwarder.')); + m = new form.Map('dhcp', _('DNS')); s = m.section(form.TypedSection, 'dnsmasq'); s.anonymous = false;